home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2003-055.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  94 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12365);
  11.  script_version ("$Revision: 1.4 $");
  12.  script_cve_id("CVE-2003-0022", "CVE-2003-0023", "CVE-2003-0066");
  13.  
  14.  name["english"] = "RHSA-2003-055: rxvt";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated rxvt packages are available which fix a number of vulnerabilities
  21.   in the handling of escape sequences.
  22.  
  23.   [Updated 12 March 2003]
  24.   Added packages for Red Hat Enterprise Linux ES and Red Hat Enterprise
  25.   Linux WS
  26.  
  27.   Rxvt is a color VT102 terminal emulator for the X Window System. A number
  28.   of issues have been found in the escape sequence handling of Rxvt.
  29.   These could be potentially exploited if an attacker can cause carefully
  30.   crafted escape sequences to be displayed on an rxvt terminal being used by
  31.   their victim.
  32.  
  33.   One of the features which most terminal emulators support is the ability
  34.   for the shell to set the title of the window using an escape sequence.
  35.   Certain xterm variants, including rxvt, also provide an escape sequence for
  36.   reporting the current window title. This essentially takes the current
  37.   title and places it directly on the command line. Since it is not
  38.   possible to embed a carriage return into the window title itself, the
  39.   attacker would have to convince the victim to press the Enter key for the
  40.   title to be processed as a command, although the attacker can perform a
  41.   number of actions to increase the likelihood of this happening.
  42.  
  43.   A certain escape sequence when displayed in rxvt will create an arbitrary
  44.   file.
  45.  
  46.   It is possible to add malicious items to the dynamic menus through an
  47.   escape sequence.
  48.  
  49.   Users of Rxvt are advised to upgrade to these errata packages which contain
  50.   a patch to disable the title reporting functionality and patches to correct
  51.   the other issues.
  52.  
  53.   Red Hat would like to thank H D Moore for bringing these issues to our
  54.   attention.
  55.  
  56.  
  57.  
  58.  
  59. Solution : http://rhn.redhat.com/errata/RHSA-2003-055.html
  60. Risk factor : High';
  61.  
  62.  script_description(english:desc["english"]);
  63.  
  64.  summary["english"] = "Check for the version of the rxvt packages";
  65.  script_summary(english:summary["english"]);
  66.  
  67.  script_category(ACT_GATHER_INFO);
  68.  
  69.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  70.  family["english"] = "Red Hat Local Security Checks";
  71.  script_family(english:family["english"]);
  72.  
  73.  script_dependencies("ssh_get_info.nasl");
  74.  
  75.  script_require_keys("Host/RedHat/rpm-list");
  76.  exit(0);
  77. }
  78.  
  79. include("rpm.inc");
  80. if ( rpm_check( reference:"rxvt-2.7.8-4", release:"RHEL2.1") )
  81. {
  82.  security_hole(0);
  83.  exit(0);
  84. }
  85.  
  86. if ( rpm_exists(rpm:"rxvt-", release:"RHEL2.1") )
  87. {
  88.  set_kb_item(name:"CVE-2003-0022", value:TRUE);
  89.  set_kb_item(name:"CVE-2003-0023", value:TRUE);
  90.  set_kb_item(name:"CVE-2003-0066", value:TRUE);
  91. }
  92.  
  93. set_kb_item(name:"RHSA-2003-055", value:TRUE);
  94.